summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWollnashorn <Wollnashorn@users.noreply.github.com>2023-06-14 11:21:22 +0200
committerWollnashorn <Wollnashorn@users.noreply.github.com>2023-06-14 11:21:22 +0200
commita9e4dddad582d61871076b4310f2c99009afe0db (patch)
tree3758955435af379cb089abdc45a484b10f3ce054
parentvideo_core: Never apply AF to None mipmap mode (diff)
downloadyuzu-a9e4dddad582d61871076b4310f2c99009afe0db.tar
yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.tar.gz
yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.tar.bz2
yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.tar.lz
yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.tar.xz
yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.tar.zst
yuzu-a9e4dddad582d61871076b4310f2c99009afe0db.zip
-rw-r--r--src/video_core/textures/texture.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp
index b46dce096..1daa2d488 100644
--- a/src/video_core/textures/texture.cpp
+++ b/src/video_core/textures/texture.cpp
@@ -62,10 +62,10 @@ std::array<float, 4> TSCEntry::BorderColor() const noexcept {
}
float TSCEntry::MaxAnisotropy() const noexcept {
- const bool suitable_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering
- ? mipmap_filter != TextureMipmapFilter::None
- : mipmap_filter != TextureMipmapFilter::Linear;
- if (max_anisotropy == 0 && (depth_compare_enabled.Value() || !suitable_mipmap_filter)) {
+ const bool unsupported_mipmap_filter = Settings::values.use_aggressive_anisotropic_filtering
+ ? mipmap_filter == TextureMipmapFilter::None
+ : mipmap_filter != TextureMipmapFilter::Linear;
+ if (max_anisotropy == 0 && (depth_compare_enabled.Value() || unsupported_mipmap_filter)) {
return 1.0f;
}
const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();